home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
starfi_1
/
form2.frm
< prev
next >
Wrap
Text File
|
1997-09-08
|
2KB
|
77 lines
VERSION 4.00
Begin VB.Form Form2
BorderStyle = 4 'Fixed ToolWindow
Caption = "Scrolling Star Field VB ver 4"
ClientHeight = 5280
ClientLeft = 2445
ClientTop = 1635
ClientWidth = 4680
Height = 5685
Left = 2385
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 5280
ScaleWidth = 4680
ShowInTaskbar = 0 'False
Top = 1290
Width = 4800
Begin VB.PictureBox Picture1
AutoSize = -1 'True
Height = 4560
Left = 60
Picture = "Form2.frx":0000
ScaleHeight = 4500
ScaleWidth = 4500
TabIndex = 0
Top = 60
Width = 4560
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "CLICK THE LOGO TO CONTINUE"
Height = 255
Index = 2
Left = 60
TabIndex = 3
Top = 5040
Width = 4515
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "Use the arrow keys to scroll the display"
Height = 255
Index = 1
Left = 120
TabIndex = 2
Top = 4800
Width = 4455
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "A Star field example"
Height = 255
Index = 0
Left = 120
TabIndex = 1
Top = 4620
Width = 4515
End
End
Attribute VB_Name = "Form2"
Attribute VB_Creatable = False
Attribute VB_Exposed = False
Option Explicit
Private Sub Form_Load()
Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2
End Sub
Private Sub Picture1_Click()
Form1.Show
Unload Me
End Sub